home *** CD-ROM | disk | FTP | other *** search
-
- #include "iccomp.h"
-
- static char *err_msg[] =
- {
- "(", /* err_openpar_expected, */
- ")", /* err_closepar_expected, */
- "{", /* err_openbrace_expected, */
- "}", /* err_closebrace_expected, */
- ";", /* err_semicol_expected, */
- "=", /* err_assign_expected, */
- "error in expression", /* err_in_expression, */
- ",", /* err_comma_expected, */
- "statement(s)", /* err_statements_expected, */
- "identifier", /* err_identifier_expected, */
- "code or vars", /* err_code_or_vars_expected, */
- ",' or ')'", /* err_comma_or_closepar_expected, */
- "number", /* err_number_expected, */
- "older', 'younger' or 'newer'", /* err_older_younger, */
- };
-
-
- int yyerror (s)
- char *s;
- {
- errcount++;
- printf ("[%s] Line %d", source_name, yylineno);
-
- if (!yytext[0])
- puts (": Unexpected end of file.");
- else
- printf(" at '%s': '%s'%s\n", yytext, err_msg[parse_error],
- parse_error == err_in_expression ?
- nullstring
- :
- " expected"
- );
-
- return (0);
- }
-